home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / stdwin / Gen / wperror.c < prev    next >
Text File  |  1995-12-21  |  229b  |  17 lines

  1. /* STDWIN -- UNIVERSAL WPERROR. */
  2.  
  3. #include "tools.h"
  4. #include "stdwin.h"
  5.  
  6. /* STDWIN equivalent of perror(). */
  7.  
  8. void
  9. wperror(name)
  10.     char *name;
  11. {
  12.     char buf[256];
  13.     
  14.     sprintf(buf, "%s: Error %d.", name, errno);
  15.     wmessage(buf);
  16. }
  17.